:root {
            --pri-color: #1a1a2e;
            --sec-color: #d4af37;
            --text-light: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
        }

/* Loader Overlay */
.loader-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none; /* Hidden initially */
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
}

    /* Loader Box */
.loader-box {
    background: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 400px;
}

/* Loader Logo */
.loader-logo {
    width: 200px; /* Adjust size */
    height: 65px;
    margin-bottom: 10px;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
}

/* Loader Text */
.loader-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2px;
     color: rgb(255, 255, 255);
}

/* Countdown Text */
.countdown-text {
    font-size: 16px;
    color: rgb(32, 102, 232);
    font-weight: bold;
    margin-top: 20px;
   
}
/* HTML: <div class="loader"></div> */
.loader {
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: repeating-conic-gradient(rgb(8, 0, 255) 0 90deg,#eaeaea 0 180deg);
    animation: l21 1s infinite linear;
    margin-bottom: 100px;
    position: fixed;
    
    left: 49.5%;
     justify-content: center;
    align-items: center;

   
  }
  @keyframes l21 {
    100% {transform: rotate(.5turn)}
  }


        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('slide.jpg');
            background-position: center;
            background-size: cover;
            color: white;
            padding: 250px 0 80px;
            text-align: center;
            margin-top: 110px !important;
            height: 600px;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn-hero {
            background-color: white;
            color: var(--pri-color);
            padding: 12px 35px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
        }

        .btn-hero:hover {
            background-color: var(--sec-color);
            transform: scale(1.05);
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: #f5f5f5;
        }

        .faq-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--pri-color);
            margin-bottom: 50px;
        }

        .faq-sidebar {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 100px;
        }

        .faq-sidebar h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--pri-color);
        }

        .faq-sidebar ul {
            list-style: none;
            padding: 0;
        }

        .faq-sidebar li {
            margin-bottom: 15px;
        }

        .faq-sidebar a {
            color: #555;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            display: block;
            padding: 8px 0;
        }

        .faq-sidebar a:hover, .faq-sidebar a.active {
            color: var(--sec-color);
            padding-left: 10px;
        }

        .faq-content {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .faq-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--pri-color);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--sec-color);
        }

        .accordion-item {
            border: none;
            border-bottom: 1px solid #e0e0e0;
            margin-bottom: 10px;
        }

        .accordion-button {
            background-color: transparent;
            color: var(--pri-color);
            font-weight: 600;
            font-size: 1rem;
            padding: 20px 0;
            border: none;
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background-color: transparent;
            color: var(--sec-color);
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            padding: 15px 0 25px;
            color: #555;
            line-height: 1.8;
        }

        /* Help Section */
        .help-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 40px;
   
}
@media (max-width: 768px) {
    .help-section {
        flex-direction: column; /* side by side → top/bottom */
    }
}

.help-box {
    flex: 0 1 auto;
    background: linear-gradient(#dcdcdc, #8f8585);
    padding: 50px;
    border-radius: 10px;
    border-left: 10px solid #160330;
}

.help-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.help-box .sub {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.help-box .desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-row {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 8px 35px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
}

.faq-btn {
    background: #0c0c28;
    color: #fff;
}

.contact-btn {
    background: #0b0b33;
    color: #fff;
}

.image-box {
    flex: 1;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    overflow: hidden; 
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}


         /* contact */

         .contact-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            
        }

        .contact-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .contact-info {
            background: #f8f9fa;
            padding: 50px 40px;
        }

        .contact-info h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
            color: #333;
            letter-spacing: 2px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: #e9ecef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .info-icon i {
            font-size: 20px;
            color: #495057;
        }

        .info-content h5 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }

        .info-content p {
            margin-bottom: 3px;
            color: #6c757d;
            font-size: 15px;
        }

        .info-content a {
            color: #0d6efd;
            text-decoration: none;
        }

        .info-content a:hover {
            text-decoration: underline;
        }

        .operating-hours {
            background: rgb(223, 221, 221);
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
        }

        .operating-hours h5 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #121111;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .hours-label {
            color: #616365;
        }

        .hours-value {
            color: #333;
            font-weight: 500;
        }

        .contact-form {
            padding: 50px 30px;
        }

        .contact-form h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #333;
        }

        .form-label {
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-control {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.2rem rgba(13,110,253,.15);
        }

        .phone-input-group {
            display: flex;
            gap: 10px;
        }

        .country-select {
            width: 100px;
            flex-shrink: 0;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            padding-right: 30px;
        
        }

        .flag-icon {
            width: 24px;
            height: 16px;
            margin-right: 5px;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .btn-send {
            background: #000;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-send:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .btn-send i {
            font-size: 18px;
        }

        @media (max-width: 768px) {
            .contact-info, .contact-form {
                padding: 30px 25px;
            }

            .contact-info h2, .contact-form h2 {
                font-size: 26px;
            }
        }
        /* Footer */
        footer {
            background-color: #0a0a0a;
            color: var(--text-light);
            padding: 60px 0 20px;
        }

        .footer-section h5 {
            color: #D1AE6C;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #D1AE6C;
            cursor: pointer;
        }

        .payment-icons img {
            height: 40px;
            margin: 5px;
        }

        .site-links {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #333;
        }

        .site-link {
            background-color: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--sec-color);
            color: #D1AE6C;;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            margin: 5px;
            transition: all 0.3s;
        }

        .site-link:hover {
            background-color: #D1AE6C;;
            color: #000;
        }

        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .faq-sidebar {
                margin-bottom: 30px;
                position: relative;
                top: 0;
            }
        }
        
.transport-section {
        position: relative;
        background: linear-gradient(rgba(220, 220, 220, 0.4), rgba(200, 200, 200, 0.4)),
                    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23e8e8e8" width="1200" height="800"/><path stroke="%23d0d0d0" stroke-width="2" fill="none" d="M100,200 Q300,150 500,200 T900,200 M200,400 Q400,350 600,400 T1000,400 M150,600 Q350,550 550,600"/><circle cx="180" cy="180" r="40" fill="white" stroke="%23ff6b6b" stroke-width="3"/><text x="190" y="195" font-size="24" fill="%23333">PARIS</text><circle cx="520" cy="220" r="35" fill="white" stroke="%23ff6b6b" stroke-width="3"/><text x="450" y="175" font-size="20" fill="%23555">DISNEYLAND</text></svg>');
        background-size: cover;
        background-position: center;
        padding: 50px 20px;
        min-height: 60vh;
    }

    .support-card {
        background: linear-gradient(135deg, #d4a574 0%, #c9975e 100%);
        border-radius: 25px;
        padding: 45px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
        text-align: center;
    }

    .support-card .icon-circle {
        width: 90px;
        height: 90px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        border: 3px solid rgba(255, 255, 255, 0.3);
    }

    .support-card .icon-circle i {
        font-size: 2.5rem;
        color: #fff;
    }

    .support-card h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

    .support-card .support-badge {
        display: inline-block;
        background: #000;
        color: #fff;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .support-card p {
        font-size: 1.1rem;
        color: #2a2a2a;
        margin-bottom: 35px;
        line-height: 1.7;
    }

    .support-card .btn-primary-custom {
        background: #000;
        color: #fff;
        border: none;
        padding: 16px 40px;
        border-radius: 50px;
        font-size: 1.05rem;
        font-weight: 600;
        margin: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .support-card .btn-primary-custom:hover {
        background: #333;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .booking-widget {
        background: #fff;
        border-radius: 25px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        padding: 35px;
        max-width: 500px;
        margin: 0 auto;
    }

    .widget-header {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #f0f0f0;
    }

    .widget-header h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 10px;
    }

    .widget-header .subtitle {
        color: #666;
        font-size: 0.95rem;
    }

    .availability-notice {
        background: linear-gradient(135deg, #fff9e6 0%, #fff3d6 100%);
        border-left: 4px solid #d4a574;
        padding: 15px 20px;
        border-radius: 12px;
        margin-bottom: 25px;
    }

    .availability-notice i {
        color: #d4a574;
        margin-right: 10px;
    }

    .availability-notice span {
        font-size: 0.95rem;
        color: #333;
        font-weight: 600;
    }

    .input-group-custom {
        margin-bottom: 20px;
    }

    .input-group-custom label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .input-group-custom label i {
        color: #d4a574;
        font-size: 1.1rem;
    }

    .input-group-custom input {
        width: 100%;
        padding: 15px 18px;
        border: 2px solid #e8e8e8;
        border-radius: 12px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        background: #fafafa;
    }

    .input-group-custom input:focus {
        outline: none;
        border-color: #d4a574;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    }

    .input-group-custom input::placeholder {
        color: #999;
    }

    .trust-section {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 20px 0;
        border-top: 2px solid #f0f0f0;
        border-bottom: 2px solid #f0f0f0;
        margin: 25px 0;
    }

    .trust-item {
        text-align: center;
    }

    .trust-item .trust-icon {
        font-size: 1.5rem;
        color: #d4a574;
        margin-bottom: 8px;
    }

    .trust-item .trust-label {
        font-size: 0.8rem;
        color: #666;
        font-weight: 600;
        text-transform: uppercase;
    }

    .rating-stars {
        color: #ffa500;
        font-size: 1.2rem;
    }

    .company-badge {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        color: #fff;
        padding: 25px;
        border-radius: 15px;
        text-align: center;
        margin-top: 25px;
    }

    .company-badge h4 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 8px;
        letter-spacing: 1px;
    }

    .company-badge .tagline {
        font-size: 0.85rem;
        opacity: 0.9;
        margin: 0;
    }

    .company-badge i {
        font-size: 2rem;
        color: #d4a574;
        margin-top: 10px;
    }

    @media (max-width: 768px) {
        .support-card {
            margin-bottom: 30px;
        }
        .support-card h2 {
            font-size: 2rem;
        }
        .support-card .btn-primary-custom {
            display: block;
            margin: 10px 0;
        }
        .trust-section {
            flex-wrap: wrap;
            gap: 20px;
        }
    }